home *** CD-ROM | disk | FTP | other *** search
- /*
- EvenMore library
-
- Author: Chris Perver
- Copyright (c) 2001
-
- This is the main library for EvenMore. All this basically is is an empty
- plugin, which is used as a template to open your own custom plugins.
- The procedures MUST be kept in the same name in the same order.
- You can add your own procedures, but these must be internal to this
- plugin.
-
- This layout may be subject to change!!!
-
- When making your own plugin, change the LIBRARY name/version and the
- description to your own names!
-
- */
-
-
- OPT REG=5
-
-
-
- LIBRARY 'evenmore.library',1,1,'EvenMore Master Library 1.1' IS em_main, em_end, em_info, em_pluginid, em_begin, em_format
-
- MODULE '*epo'
-
- -> *** STANDARD PROCS FOR PLUGINS
-
-
- -> *** CALLED TO RUN THE PLUGIN MODULE
-
- PROC em_begin(epo:PTR TO em_pluginobj)
- ENDPROC FALSE, FALSE
-
- PROC em_main(epo:PTR TO em_pluginobj)
- ENDPROC FALSE
-
- -> *** NOT USED YET
-
- PROC em_end() IS EMPTY
-
- -> *** DESCRIPTION TEXT
-
- PROC em_info() IS 'EvenMore Master Library 1'
-
- -> *** PLUGIN ID
- -> *** CURRENT LIST OF ID's
- -> "FILE" - Tells EvenMore this is a file type plugin to convert text
-
- PROC em_pluginid() IS "FILE"
-
- -> *** USED ON OPENING/CLOSING OF THE LIBRARY
-
- PROC em_format() IS EMPTY
-
- PROC main() IS EMPTY
- PROC close() IS EMPTY
-